home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Graphics / XLabProcess / Install-XLabProcess < prev    next >
Encoding:
Text File  |  1997-07-03  |  1.5 KB  |  81 lines

  1. ; This is test of many of the features of the Installer
  2. ; Prints out debugging info if run from CLI
  3. (message
  4.    "\nXLabProcess V1.2.2\n"
  5.    "© Xavier NUEL, 1997\n\n"
  6.    "Ce programme est ShareWare "
  7.    "--- "
  8.    "Pensez à vous enregistrer...\n\n"
  9. )
  10. (set @default-dest (pathonly (expandpath "Work:"))
  11. )
  12. (if (= @language "français")
  13.  
  14. (
  15. (set #where_install "Où voulez-vous installer\nle répertoire 'XLabProcess' ?")
  16. (set #copying "Copie de XLabProcess vers %s...")
  17. (set #instlocdir "Installation du fichier catalogue")
  18. )
  19.  
  20. ; ---- English ----
  21. (
  22. (set #where_install "Where do you want to put\nthe 'XLabProcess' directory ?")
  23. (set #copying "Copying XLabProcess to %s...")
  24. )
  25.  
  26. )
  27.  
  28. (set InstallDir
  29.    (askdir
  30.       (prompt #where_install)
  31.       (help @askdir-help)
  32.       (default @default-dest)
  33.    )
  34. )
  35.  
  36. (set DestDir 
  37.     (tackon InstallDir "XLabProcess")
  38. )
  39.  
  40.  
  41. (makedir DestDir
  42.    (infos)
  43. )
  44.  
  45. (copyfiles
  46.    (prompt #copying DestDir)
  47.    (help @copyfiles-help)
  48.    (source "XLabProcess")
  49.    (dest DestDir)
  50.    (infos)
  51.    (all)
  52. )
  53. (if 
  54.     (= @language "français")
  55.     (
  56.         (set LocDir
  57.                (askdir
  58.                   (prompt #instlocdir)
  59.                   (help @askdir-help)
  60.                   (default "Locale:catalogs/français")
  61.             )
  62.         )    
  63.         (copyfiles
  64.                (prompt )
  65.               (help @copyfiles-help)
  66.                (source "Catalogs")
  67.                (dest LocDir)
  68.                (all)
  69.         )
  70.     )
  71. )
  72. (message
  73.    "\nXLabProcess V1.2.2\n"
  74.    "© Xavier NUEL, 1997\n\n"
  75.    "Ce programme est ShareWare "
  76.    "--- "
  77.    "Pensez à vous enregistrer...\n\n"
  78.    "--- "
  79.    "Visitez le site de BadDolls Production\n"
  80.    "http://www.a2points.com/homepage/3698138/\n"
  81. )